Hello all:
I was writing a wrapper for standard two panel figure of K-M plots oriented vertically for publications. I like the fxsize and fysize numbers I set to get the proportions I like for the KM plot.
While the individual graphs look fine, the combined version looks strange with extra white space in the graph region on both left and right sides. I need to trim the extra space in the graph region of the combined figure. How can I fix the code to achieve this? I have looked at all the options of graph combine and twoway and can't seem to get it right.
I was writing a wrapper for standard two panel figure of K-M plots oriented vertically for publications. I like the fxsize and fysize numbers I set to get the proportions I like for the KM plot.
While the individual graphs look fine, the combined version looks strange with extra white space in the graph region on both left and right sides. I need to trim the extra space in the graph region of the combined figure. How can I fix the code to achieve this? I have looked at all the options of graph combine and twoway and can't seem to get it right.
Code:
graph combine A B, col(1) xcommon iscale(.7) /// imargin(medium) fxsize(80) fysize(150) graphregion(margin(l-25 r-25)) name(AB, replace)
Comment